home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).adf / ARP-DOCS1.3 / Echo < prev    next >
Text File  |  1990-06-22  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4.      Echo(V1.3)              ARP User's Manual              Echo(V1.3)
  5.  
  6.  
  7.  
  8.      NAME
  9.           Echo - Echo a string to the terminal.
  10.  
  11.      SYNOPSIS
  12.           Echo [string] NOLINE/s FIRST/k LEN/k
  13.  
  14.      DESCRIPTION
  15.           Echo displays its argument to the current output, this can
  16.           be the printer, a file or the terminal. Echo is typically
  17.           used in Batch files, but it can also be used (and useful) to
  18.           send escape sequences to things like printers.
  19.  
  20.       Note that with the added keywords, you now MUST use double
  21.       quotes to delimit a line to echo, unlike the V1.1 ARP Echo.
  22.  
  23.      OPTIONS
  24.           NOLINE
  25.                This suppresses the newline which Echo automatically
  26.                adds at the end of its argument.
  27.  
  28.           FIRST
  29.                This option takes a numeric argument, which indicates
  30.                which character position to begin output at. Any
  31.                character before FIRST will not be displayed. This is
  32.                useful with LEN (see below).
  33.  
  34.           LEN  This option takes a numeric argument, which indicates
  35.                how many characters to output.  If you also supply a
  36.                FIRST argument (see above), character output will begin
  37.                with that character, for LEN characters. If LEN is used
  38.                without the FIRST keyword, then the final LEN
  39.                characters will be displayed.
  40.  
  41.      EXAMPLES
  42.           Echo "Hello World!" displays "Hello World" on the terminal.
  43.  
  44.           Echo >PRT: "\FHello World!"  advances the printer paper, and
  45.           displays Hello World! on the printer. Note that you must
  46.           have set your escape character to \ for this example to
  47.           work.
  48.  
  49.           Echo First 2 "Hello World!" will display "ello World!".
  50.  
  51.           Echo Len 4 "Hello World!" will display "rld!".
  52.  
  53.           Echo First 7 Len 6 "Hello World!" will display "World!".
  54.  
  55.      SEE ALSO
  56.           Set for a description of how to change the escape character.
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.      Page 1                                          (printed 4/28/89)
  64.  
  65.  
  66.  
  67.